diff options
| author | zephex-alt <[email protected]> | 2024-04-27 00:09:17 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-27 00:09:17 +0530 |
| commit | ff8e0f22064e24f0e30b37c3e4005f6d34bf897c (patch) | |
| tree | ca7b3e93435f2164463aaa1655bf9ffb2b866051 /src/app/kdrama/[id] | |
| parent | trying to implement edge runtime (diff) | |
| parent | edge runtime didn't worked (diff) | |
| download | dramalama-ff8e0f22064e24f0e30b37c3e4005f6d34bf897c.tar.xz dramalama-ff8e0f22064e24f0e30b37c3e4005f6d34bf897c.zip | |
Merge branch 'real-zephex:master' into master
Diffstat (limited to 'src/app/kdrama/[id]')
| -rw-r--r-- | src/app/kdrama/[id]/page.jsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/kdrama/[id]/page.jsx b/src/app/kdrama/[id]/page.jsx index f6926c2..69a42c2 100644 --- a/src/app/kdrama/[id]/page.jsx +++ b/src/app/kdrama/[id]/page.jsx @@ -3,8 +3,6 @@ import Image from "next/image"; import EpisodesButtons from "./buttons";
import { PreFetchVideoLinks } from "../components/cacher";
-export const runtime = "edge";
-
export default async function DramaInfo({ params }) {
const id = decodeURIComponent(params.id);
const info = await getDramaInfo(id);
|